home *** CD-ROM | disk | FTP | other *** search
- // $Id: lpginput.h,v 1.3 1999/01/25 20:00:31 shields Exp $
- //
- // This software is subject to the terms of the IBM Jikes Compiler
- // License Agreement available at the following URL:
- // http://www.ibm.com/research/jikes.
- // Copyright (C) 1996, 1998, International Business Machines Corporation
- // and others. All Rights Reserved.
- // You must accept the terms of that agreement to use this software.
- //
- #ifndef lpginput_INCLUDED
- #define lpginput_INCLUDED
-
- #include "config.h"
- #include "stream.h"
-
- typedef LexStream::TokenIndex TokenObject;
- typedef LexStream::TokenIndex Location;
-
- inline Location Loc(TokenObject i) { return i; }
-
- #include "javasym.h" /* mapping of lexical symbols */
- #include "javadef.h" /* definition of parsing names */
- #include "javaprs.h" /* parsing action functions */
-
- #endif
-